* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

/* Header */

.header {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  background: white;
  position: sticky;
  top: 0;
}

.header h2 {
  font-size: 24px;
  font-weight: bold;
}

.menu {
  font-size: 28px;
  cursor: pointer;
}

/* Title Section */

.title-section {
  text-align: center;
  padding: 20px;
}

.title-section h1 {
  text-align: left;
  font-weight: bold;
  color: #e60000;
}

.app-logo {
  width: 250px;
  margin: 20px 0 10px;
  border-radius: 20px;
}

.caption {
  color: #000000;
  margin-bottom: 10px;
}

.main-download {
  font-size: 16px;
  color: #0057d8;
  text-decoration: none;
}

.desc {
  color: red;
  margin: 15px auto;
  max-width: 85%;
  font-size: 16px;
  line-height: 1.4;
}

/* Red Download Button */

.download-btn {
  display: block;
  width: 90%;
  margin: 20px auto;
  padding: 14px;
  text-align: center;
  background: green;
  color: white;
  font-size: 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* Center all buttons */
  gap: 12px;
  /* Space between buttons */
  margin: 10px 0;
}

.btn-row p {
  margin: 0;
}

.seo {
  display: inline-block;
  padding: 10px 18px;
  background: #ff0000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
  /* Prevent button text from breaking */
}

.seo:hover {
  background: #ff2e80;
}

/* Table Section */

.table-section {
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 15px;
  border: 1px solid black;
  font-size: 16px;
}

table th {
  background: #fafafa;
  width: 40%;
  text-align: left;
}

.casino-table {
  width: 90%;
  margin: auto;
  border-collapse: collapse;
  background: #1a1a1a;
  border: 2px solid #d4af37;
  border-radius: 10px;
  overflow: hidden;
}

.casino-table th,
.casino-table td {
  padding: 12px 15px;
  text-align: center;
  color: black;
  font-size: 18px;
}

.casino-table th {
  background: white;
  /* Gold */
  color: #000;
  font-weight: bold;
}

.casino-table tr:nth-child(even) {
  background: white;
}

.casino-table tr:nth-child(odd) {
  background: white;
}

.casino-table tr:hover {
  background: #444;
  /* Hover effect */
  transition: 0.3s;
}

.casino-table a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.casino-table a:hover {
  color: #fff;
}

.link {
  color: #0057d8;
  text-decoration: underline;
}

/* ---------- Base Styling ---------- */

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #ffffff;
  color: #222;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* ---------- Headings ---------- */

h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* ---------- Paragraph ---------- */

p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ---------- Divider Line ---------- */

hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 25px 0;
}

footer {
  background: blanchedalmond;
  text-align: center;
  padding: 25px;
  color: #aaa;
  margin-top: 40px;
}

/* ---------- Feature List ---------- */

.feature-list {
  padding-left: 15px;
}

.feature-list li {
  list-style-type: disc;
  margin-bottom: 18px;
}

/* ---------- Responsive Design ---------- */

@media (max-width: 600px) {
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 16px;
  }
  p {
    font-size: 14px;
  }
}

/* Keyframe animation */

@keyframes slideAnim {
  0% {
    transform: translateX(0%);
  }
  33% {
    transform: translateX(0%);
  }
  38% {
    transform: translateX(-100%);
  }
  66% {
    transform: translateX(-100%);
  }
  71% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-200%);
  }
}

/* Mobile Responsive */

@media (max-width: 480px) {
  .in7-slider {
    max-width: 95%;
  }
}

/* Responsive */

@media (max-width: 600px) {
  .header h2 {
    font-size: 18px;
  }
  .title-section h1 {
    font-size: 20px;
  }
  table th,
  table td {
    font-size: 14px;
  }
}
